Socket
Socket
Sign inDemoInstall

@lezer/highlight

Package Overview
Dependencies
1
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lezer/highlight


Version published
Maintainers
1
Install size
294 kB
Created

Package description

What is @lezer/highlight?

@lezer/highlight is a syntax highlighting library that works with the Lezer parser system. It allows you to define and apply syntax highlighting rules to code parsed by Lezer parsers.

What are @lezer/highlight's main functionalities?

Defining Highlighting Styles

This feature allows you to define custom highlighting styles for different syntax elements like keywords, strings, and comments.

const { styleTags, tags } = require('@lezer/highlight');

const myHighlighting = styleTags({
  Keyword: tags.keyword,
  String: tags.string,
  Comment: tags.comment
});

Applying Highlighting to Parsed Code

This feature allows you to apply the defined highlighting styles to a parsed syntax tree, and it logs the highlighted ranges and their corresponding classes.

const { highlightTree } = require('@lezer/highlight');
const { parser } = require('lezer-python');
const { defaultHighlightStyle } = require('@codemirror/highlight');

const code = 'def my_function():\n    return "Hello, World!"';
const tree = parser.parse(code);

highlightTree(tree, defaultHighlightStyle.match, (from, to, classes) => {
  console.log(`Highlight ${from}-${to}: ${classes}`);
});

Other packages similar to @lezer/highlight

Changelog

Source

0.16.0 (2022-04-20)

Breaking changes

First numbered release.

Readme

Source

@lezer/highlight

[ WEBSITE | ISSUES | FORUM | CHANGELOG ]

Lezer is an incremental parser system intended for use in an editor or similar system.

@lezer/highlight provides a syntax highlighting framework for Lezer parse trees.

Its programming interface is documented on the website.

This code is licensed under an MIT license.

FAQs

Last updated on 20 Apr 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc